Auto merge of #2480 - alexcrichton:ui, r=alexcrichton
authorbors <bors@rust-lang.org>
Thu, 17 Mar 2016 06:43:11 +0000 (23:43 -0700)
committerbors <bors@rust-lang.org>
Thu, 17 Mar 2016 06:43:11 +0000 (23:43 -0700)
Tweak UI for warnings and errors

Right now Cargo prints out errors justified like all other status messages, but
this can look odd without coloration:

```
   error some error message
```

Instead, this commit changes both warnings and errors to use the same style of:

```
error: some error message
warning: some warning message
```

Additionally, warnings now only print out "warning" in yellow instead of the
entire message (like errors do)


Trivial merge